projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
278584f
)
(indent-sexp): Even if outer-loop-done is t, still move down one line.
author
Richard M. Stallman
<rms@gnu.org>
Sat, 29 May 1993 05:45:47 +0000
(
05:45
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sat, 29 May 1993 05:45:47 +0000
(
05:45
+0000)
lisp/emacs-lisp/lisp-mode.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/lisp-mode.el
b/lisp/emacs-lisp/lisp-mode.el
index 4a75b4c409746a67c0e07ec6166948b26d71f199..17acda41e22c78783a3b70d5ddbfcc9c5dd5c88a 100644
(file)
--- a/
lisp/emacs-lisp/lisp-mode.el
+++ b/
lisp/emacs-lisp/lisp-mode.el
@@
-560,7
+560,7
@@
ENDPOS is encountered."
(or outer-loop-done
(setq outer-loop-done (<= next-depth 0)))
(if outer-loop-done
- nil
+ (forward-line 1)
(while (> last-depth next-depth)
(setq indent-stack (cdr indent-stack)
last-depth (1- last-depth)))